home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / TUTORIAL / 0222.ZIP / TIMI.PAS < prev    next >
Pascal/Delphi Source File  |  1980-01-01  |  512b  |  14 lines

  1. INTERFACE;
  2.  
  3. UNIT TIM (EXACTTIME,DELAY);
  4.  
  5. PROCEDURE EXACTTIME (VAR hrs, mins, secs: REAL);
  6. PROCEDURE DELAY (wsecs: REAL);
  7.  
  8. { This part of the program merely shows how an interface for a unit is
  9.   constructed, and then how this interface can be included in both the
  10.   implementation of the unit and in a program that uses that unit; this 
  11.   is done with the $INCLUDE metacommand for IBM Pascal. }
  12.  
  13. BEGIN
  14. END;